fmt.fmtFlags.precPresent (field)
15 uses
fmt (current package)
format.go#L25: precPresent bool
format.go#L142: if f.precPresent && f.prec > 4 {
format.go#L203: if f.widPresent || f.precPresent {
format.go#L216: if f.precPresent {
format.go#L325: if f.precPresent {
format.go#L339: if f.precPresent {
format.go#L376: if f.precPresent && f.prec < length {
format.go#L493: if f.precPresent {
print.go#L186: func (p *pp) Precision() (prec int, ok bool) { return p.fmt.prec, p.fmt.precPresent }
print.go#L1123: p.fmt.prec, p.fmt.precPresent, argNum = intFromArg(a, argNum)
print.go#L1127: p.fmt.precPresent = false
print.go#L1129: if !p.fmt.precPresent {
print.go#L1134: p.fmt.prec, p.fmt.precPresent, i = parsenum(format, i, end)
print.go#L1135: if !p.fmt.precPresent {
print.go#L1137: p.fmt.precPresent = true
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |